home *** CD-ROM | disk | FTP | other *** search
INI File | 2002-07-19 | 1.0 KB | 108 lines |
- [switchs | switch statement]
- switch (|)
- {
- case : ;
- break;
- case : ;
- break;
- }
-
- [switche | switch statement (with default)]
- switch (|)
- {
- case : ;
- break;
- case : ;
- break;
- default: ;
- }
-
- [fors | for (no opening/closing braces)]
- for (|; ;)
-
- [forb | for statement]
- for (|; ;)
- {
-
- }
-
- [for | for statement]
- for (int i = 0; i <|; i++)
- {
- }
-
- [funcp | Function declaration with Parenthesis]
- function |()
- {
-
- }
-
- [func | Function Declaration]
- function | {
-
- }
-
- [ifs | if (no opening/closing braces)]
- if (|)
-
- [ifb | if statement]
- if (|)
- {
-
- }
-
- [ife | if (no opening/closing braces) else (no opening/closing braces)]
- if (|)
-
- else
-
- [ifeb | if else]
- if (|)
- {
-
- }
- else
- {
-
- }
-
- [trye | try catch]
- try
- {
- |
- }
- catch()
- {
- }
-
- [trycf | try catch finally]
- try
- {
- |
- }
- catch()
- {
- }
- finally
- {
- }
-
- [whileb | while statement]
- while (|)
- {
-
- }
-
- [whiles | while (no opening/closing braces)]
- while (|)
-
- [dow | Do While Statement]
- do
- |
- while ();
-
- [forin | For In Statement]
- for (| in)
-
-
-